home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 May / may_2001.iso / intercd / root / Multimedia / Image / ^iShell / setup.exe / Main / ToolsRuntime.k < prev    next >
Encoding:
Text File  |  2001-03-26  |  4.6 KB  |  91 lines

  1. module oRuntimePlugin is cPlugin
  2. has
  3.     release Editor:
  4.         GetIO()
  5.             do
  6.                 result := oIORuntimePlugin;
  7.             end;
  8.     end;
  9. end;
  10.  
  11. release Editor:
  12.  
  13. object oIORuntimeLabel is "Runtime";
  14.  
  15. object oIORuntimePlugin is cIOPlugin
  16. with
  17.     MenuItems is [
  18.         cIOEnvironmentGetterMenuItem with Name is "Cache URL"; Value is oCacheURLEnvironmentGetter; end,
  19.         cIOEnvironmentGetterMenuItem with Name is "Click Count"; Value is oClickCountEnvironmentGetter; end,
  20.         cIOEnvironmentGetterMenuItem with Name is "Command Key"; Value is oCommandKeyEnvironmentGetter; end,
  21.         cIOEnvironmentGetterMenuItem with Name is "Connection Speed"; Value is oConnectionSpeedEnvironmentGetter; end,
  22.         cIOEnvironmentGetterMenuItem with Name is "Control Key"; Value is oControlKeyEnvironmentGetter; end,
  23.         cIOEnvironmentGetterMenuItem with Name is "Day"; Value is oDayEnvironmentGetter; end,
  24.         cIOEnvironmentGetterMenuItem with Name is "Day of Week"; Value is oDayOfWeekEnvironmentGetter; end,
  25.         cIOEnvironmentGetterMenuItem with Name is "Disk Cache Count"; Value is oDiskCacheCountEnvironmentGetter; end,
  26.         cIOEnvironmentGetterMenuItem with Name is "Document URL"; Value is oURLEnvironmentGetter; end,
  27.         cIOEnvironmentGetterMenuItem with Name is "Focus"; Value is oFocusEnvironmentGetter; end,
  28.         cIOEnvironmentGetterMenuItem with Name is "Height"; Value is oHeightEnvironmentGetter; end,
  29.         cIOEnvironmentGetterMenuItem with Name is "Hour"; Value is oHourEnvironmentGetter; end,
  30.         cIOEnvironmentGetterMenuItem with Name is "Macintosh"; Value is oMacintoshEnvironmentGetter; end,
  31.         cIOEnvironmentGetterMenuItem with Name is "Main URL"; Value is oMainURLEnvironmentGetter; end,
  32.         cIOEnvironmentGetterMenuItem with Name is "Memory Cache Count"; Value is oMemoryCacheCountEnvironmentGetter; end,
  33.         cIOEnvironmentGetterMenuItem with Name is "Minute"; Value is oMinuteEnvironmentGetter; end,
  34.         cIOEnvironmentGetterMenuItem with Name is "Month"; Value is oMonthEnvironmentGetter; end,
  35.         cIOEnvironmentGetterMenuItem with Name is "Name"; Value is oNameEnvironmentGetter; end,
  36.         cIOEnvironmentGetterMenuItem with Name is "Project URL"; Value is oDiskURLEnvironmentGetter; end,
  37.         cIOEnvironmentGetterMenuItem with Name is "Option Key"; Value is oOptionKeyEnvironmentGetter; end,
  38.         cIOEnvironmentGetterMenuItem with Name is "Second"; Value is oSecondEnvironmentGetter; end,
  39.         cIOEnvironmentGetterMenuItem with Name is "Shift Key"; Value is oShiftKeyEnvironmentGetter; end,
  40.         cIOEnvironmentGetterMenuItem with Name is "Site URL"; Value is oSiteURLEnvironmentGetter; end,
  41.         cIOEnvironmentGetterMenuItem with Name is "Volume"; Value is oVolumeEnvironmentGetter; end,
  42.         cIOEnvironmentGetterMenuItem with Name is "Width"; Value is oWidthEnvironmentGetter; end,
  43.         cIOEnvironmentGetterMenuItem with Name is "Windows"; Value is oWindowsEnvironmentGetter; end,
  44.         cIOEnvironmentGetterMenuItem with Name is "Year"; Value is oYearEnvironmentGetter; end,
  45.         
  46.         cIOEnvironmentSetterMenuItem with Name is "Document URL"; Value is oURLEnvironmentSetter; end,
  47.         cIOEnvironmentSetterMenuItem with Name is "Focus"; Value is oFocusEnvironmentSetter; end,
  48.         cIOEnvironmentSetterMenuItem with Name is "Random Seed"; Value is oRandomSeedEnvironmentSetter; end,
  49.         cIOEnvironmentSetterMenuItem with Name is "Volume"; Value is oVolumeEnvironmentSetter; end
  50.     ];
  51.     EventLines is [
  52.         cIOSeedListLine 
  53.         with 
  54.             Label is oIORuntimeLabel;
  55.             Lines is [
  56.                 cIOSeedLine with IO is oIOActivateEvent; end,
  57.                 cIOSeedLine with IO is oIOFocusedEvent; end,
  58.                 cIOSeedLine with IO is oIOKeyboardEvent; end,
  59.                 cIOSeedLine with IO is oIOLoadedEvent; end,
  60.                 cIOSeedLine with IO is oIOQuitEvent; end
  61.             ];
  62.         end
  63.     ];
  64.     CommandLines is [
  65.         cIOSeedListLine 
  66.         with 
  67.             Label is oIORuntimeLabel;
  68.             Lines is [
  69.                 cIOSeedLine with IO is oIOBackCommand; end,
  70.                 cIOSeedLine with IO is oIOBrowseCommand; end,
  71.                 cIOSeedLine with IO is oIODoKeyboardCommand; end,
  72.                 cIOSeedLine with IO is oIODoMenuCommand; end,
  73.                 cIOSeedLine with IO is oIOQuickTimeEffectCommand; end,
  74.                 cIOSeedLine with IO is oIOSimpleEffectCommand; end,
  75.                 cIOSeedLine with IO is oIOLaunchCommand; end,
  76.                 cIOSeedLine with IO is oIOMouseCommand; end,
  77.                 cIOSeedLine with IO is oIOPageSetupCommand; end,
  78.                 cIOSeedLine with IO is oIOPrintCommand; end,
  79.                 cIOSeedLine with IO is oIOQuitCommand; end,
  80.                 cIOSeedLine with IO is oIORefreshCommand; end,
  81.                 cIOSeedLine with IO is oIOScreenSaverCommand; end,
  82.                 cIOSeedLine with IO is oIOSetRuntimeCursorsCommand; end,
  83.                 cIOSeedLine with IO is oIOSetVolumeCommand; end,
  84.                 cIOSeedLine with IO is oIOSetWindowCommand; end
  85.             ];
  86.         end
  87.     ];
  88. end;
  89.  
  90. end; -- release Editor
  91.